home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 174 / 174.d81 / program 4 (.txt) < prev    next >
Commodore BASIC  |  2022-08-26  |  502b  |  23 lines

  1. 5 rem set printer up for geofax and the       bj360 driver
  2. 10 c$=chr$(10)
  3. 20 d$=chr$(27)+chr$(91)+chr$(75)+chr$(2)+chr$(0)+chr$(0)+chr$(31)
  4. 30 s$=d$+"bjlstart"+c$
  5. 40 e$="bjlend"+c$
  6. 50 open4,4,5
  7. 100 print#4,s$;
  8. 110 print#4,"@setcontrolmode=bj"c$;
  9. 120 print#4,e$;
  10. 200 print#4,s$;
  11. 210 print#4,"controlmode=bj"c$;
  12. 220 print#4,"pagelength=11"c$;
  13. 230 print#4,"autolf=off"c$;
  14. 240 print#4,e$;
  15. 300 print#4,s$;
  16. 310 print#4,"controlmode=common"c$;
  17. 320 print#4,"paperselect=letter"c$;
  18. 330 print#4,"smoothing=off"c$;
  19. 340 print#4,"reduction=off"c$;
  20. 350 print#4,"autopoweroff=disable"c$;
  21. 360 print#4,e$
  22. 999 close4
  23.